QuickOPC User's Guide and Reference
Installed Examples - Web - UABrowseNodesWeb

Browses nodes in an OPC UA server (ASP.NET Web application).

The default page code-behind:

// $Header: $
// Copyright (c) CODE Consulting and Development, s.r.o., Plzen. All rights reserved.

// ReSharper disable ArrangeModifiersOrder
// ReSharper disable InconsistentNaming

using System;
using OpcLabs.EasyOpc.UA;
using OpcLabs.EasyOpc.UA.AddressSpace;
using OpcLabs.EasyOpc.UA.AddressSpace.Standard;
using OpcLabs.EasyOpc.UA.OperationModel;

namespace UABrowseNodesWeb
{
    public partial class _Default : System.Web.UI.Page
    {
        // Use a shared client instance to allow for better optimization.
        static private readonly EasyUAClient Client = new EasyUAClient();

        protected void Page_Load(object sender, EventArgs e)
        {
            try
            {
                UANodeElementCollection elementDictionary = Client.BrowseProperties(
                    "opc.tcp://opcua.demo-this.com:51210/UA/SampleServer", 
                    UAObjectIds.Server);
                foreach (UANodeElement nodeElement in elementDictionary)
                    ListBox1.Items.Add(nodeElement.ToString());
                ListBox1.Visible = true;
            }
            catch (UAException ex)
            {
                TextBox1.Text = ex.GetBaseException().Message;
                TextBox1.Visible = true;
            }
        }

        protected override void OnInit(EventArgs e)
        {
            base.OnInit(e);
            Load += Page_Load;
        }
    }
}

 

See Also

Conceptual